home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK2.toast / Development Kits (Disc 2) / QuickDraw GX / Programming Stuff / Sample Code / Printing Samples / Printer Drivers… / ImageWriter--Chooser snooper / OldApp.a < prev    next >
Encoding:
Text File  |  1996-03-20  |  1015 b   |  46 lines  |  [TEXT/MPS ]

  1. ;------------------------------------------------------------------------------
  2. ;
  3. ;    FILENAME
  4. ;        OldApp.a
  5. ;
  6. ;    DESCRIPTION
  7. ;        Contains the code necessary to dispatch from a routine in one code
  8. ;        module to a code segment in another module or within the same module
  9. ;
  10. ;    COPYRIGHT
  11. ;        Copyright © Apple Computer, Inc. 1992-1994
  12. ;        All rights reserved. 
  13. ;
  14. ;    MODIFICATION HISTORY
  15. ;
  16. ;        07/24/92        Tom Dowdy    New Today
  17. ;        12/20/93        dmh            Sync'd with the shipping 1.0b3 GX driver.
  18. ;        08/26/94        dmh            Sync'd with the shipping 1.0.1 GX driver.
  19. ;
  20. ;--------------------------------------------------------------------------------
  21.  
  22.                 CASE     OBJ
  23.                 STRING    ASIS
  24.  
  25. SD_JumpTable    PROC    EXPORT
  26.                 dc.l    0
  27.     
  28. ; Compatibility messages
  29.  
  30.                 IMPORT    SD_ConvertPrintRecordTo
  31.                 JMP        SD_ConvertPrintRecordTo
  32.  
  33.                 IMPORT    SD_ConvertPrintRecordFrom
  34.                 JMP        SD_ConvertPrintRecordFrom
  35.  
  36.                 IMPORT    SD_PrintRecordToJob
  37.                 JMP        SD_PrintRecordToJob
  38.  
  39.                 IMPORT    SD_PrValidate
  40.                 JMP        SD_PrValidate
  41.  
  42.                 IMPORT    SD_PrJobInit
  43.                 JMP        SD_PrJobInit
  44.     
  45.     END
  46.